{% extends "base.html" %} {% block title %}Doctor Financials - Quick Care Connect{% endblock %} {% block content %}
| Date | Type | Description | Amount |
|---|---|---|---|
| {{ t.created_at.strftime('%d %b %Y %H:%M') if t.created_at else '-' }} | {{ t.transaction_type }} | {{ t.description[:60] }}{% if t.description|length > 60 %}...{% endif %} | {{ "%+.2f"|format(t.amount) }} PKR |
| Amount | Status | Requested | Processed |
|---|---|---|---|
| PKR {{ "%.2f"|format(p.amount) }} | {{ p.status }} | {{ p.requested_at.strftime('%d %b %Y %H:%M') if p.requested_at else '-' }} | {{ p.processed_at.strftime('%d %b %Y') if p.processed_at else '-' }} |